blob: 6b09f772d5ebcc9d47ad8985619504c2bb6635b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// app/evcp/basic-contract-template/[id]/not-found.tsx
import { Button } from "@/components/ui/button";
import { ArrowLeft } from "lucide-react";
import Link from "next/link";
export default function NotFound() {
return (
<div className="container mx-auto py-12">
<div className="text-center">
<h1 className="text-2xl font-bold mb-4">템플릿을 찾을 수 없습니다</h1>
<p className="text-muted-foreground mb-6">
요청하신 기본계약서 템플릿이 존재하지 않거나 삭제되었습니다.
</p>
<Link href="/evcp/basic-contract-template">
<Button>
<ArrowLeft className="mr-2 h-4 w-4" />
목록으로 돌아가기
</Button>
</Link>
</div>
</div>
);
}
|